Key Sequence Detection


Posted by wayne201299 on 2023-09-28

為網站添加secret code,輸入後會有小彩蛋

  1. 監聽鍵盤點擊事件
  2. 將點擊的案件推入計算陣列後比對
    const pressed = [];
     const secretcode = 'alan'
     window.addEventListener("keyup", (e) => {
       pressed.push(e.key);
       pressed.splice(-secretcode.length - 1, pressed.length - secretcode.length);
       if (pressed.join('').includes(secretcode)) {
         cornify_add();
       }
     })
    

Konami Code
在前端開發中,Konami Code 通常指的是以下按鍵序列:
上箭頭、上箭頭、下箭頭、下箭頭、左箭頭、右箭頭、左箭頭、右箭頭、B 鍵、A 鍵、Enter(或 Return)鍵


#javascript #html







Related Posts

SharePoint Search排除搜尋內容驗證

SharePoint Search排除搜尋內容驗證

資料庫相關專有名詞簡介

資料庫相關專有名詞簡介

基礎電腦科學:演算法概要

基礎電腦科學:演算法概要


Comments